From bc8e09985cdd20188aca59b504e1fa8c7a43b8ca Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 26 Jan 2001 11:37:51 +0000 Subject: [PATCH] (display-startup-echo-area-message): Make sure the echo area is resized to fit the size of the startup message. --- lisp/startup.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/startup.el b/lisp/startup.el index d11b9945b0f..65ceb28d22b 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1207,7 +1207,8 @@ where FACE is a valid face specification, as it can be used with (defun display-startup-echo-area-message () - (message (startup-echo-area-message))) + (let ((resize-mini-windows t)) + (message (startup-echo-area-message)))) (defun command-line-1 (command-line-args-left) -- 2.30.2